home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_03_02 / 3n02052b < prev    next >
Text File  |  1991-09-16  |  615b  |  23 lines

  1. // child.c example 3b
  2. // cl /AL /Lp child.c
  3. // execpgm
  4.  
  5. // Notice you do not need to bind this program unless you want to run it as
  6. // a stand alone.  Execpgm is already bound and therefore the processor is 
  7. // already in protected mode by the time this program is reached.
  8.  
  9. #define NMSG 1800    
  10.  
  11. unsigned far pascal DosSleep(unsigned long);
  12.  
  13. main()
  14. {
  15.   int i;
  16.   printf(" child started ");
  17.   for ( i = 1; i <= NMSG; i++) {
  18.     printf("C");
  19.     DosSleep(0);        // Lets the DOS extender know to give
  20.   }                     // time to other tasks (execpgm.c)
  21.   printf(" child ended ");
  22. }
  23.